home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / tpega.zip / GPRDDOT.P < prev    next >
Text File  |  1986-02-01  |  871b  |  17 lines

  1. {                                                                              }
  2. {       EGA Graphic Primitive for Turbo Pascal 3.01A, Version 01FEB86.         }
  3. {       (C) 1986 by Kent Cedola, 2015 Meadow Lake Ct., Norfolk, VA, 23518      }
  4. {                                                                              }
  5.  
  6. function GPRDDOT(X,Y: Integer): Integer;
  7. begin
  8.   inline
  9.     ($8B/$46/$04 /$A3/GDCUR_Y /$D1/$E0 /$D1/$E0 /$03/$06/GDCUR_Y /$05/$A000
  10.       /$8E/$C0 /$8B/$76/$06 /$89/$36/GDCUR_X /$8B/$CE /$D1/$EE /$D1/$EE
  11.       /$D1/$EE /$80/$E1/$07 /$B4/$80 /$D2/$CC /$BA/$03CE /$B0/$04 /$EE /$42
  12.       /$33/$DB /$B0/$00 /$EE /$26/$84/$24 /$74/$03 /$80/$CB/$01 /$B0/$01 /$EE
  13.       /$26/$84/$24 /$74/$03 /$80/$CB/$02 /$B0/$02 /$EE /$26/$84/$24 /$74/$03
  14.       /$80/$CB/$04 /$B0/$03 /$EE /$26/$84/$24 /$74/$03 /$80/$CB/$08
  15.       /$89/$5E/$08);
  16. end;
  17.